home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005.7z / CHIP Utilities 2005.iso / images / arachne.igz / arachne.img / LEVEL0 / LPPRD.CAB / Bin / ping.bat < prev    next >
DOS Batch File  |  2005-01-16  |  783b  |  39 lines

  1. @if "%debug%"=="" echo off
  2. if "%1"=="" goto _help
  3. if "%1"=="-?" goto _help
  4. if "%1"=="/?" goto _help
  5. if "%1"=="-h" goto _help
  6. if "%1"=="/h" goto _help
  7. if not exist %ramdrv%\bin\pprd.exe goto _nopprd
  8. if "%wattcp.cfg%"=="" goto _nowattcp
  9. if not exist %wattcp.cfg%\wattcp.cfg goto _nowattcp
  10.  
  11. if not exist %ramdrv%\bin\pktchk.com goto _npktchk
  12. %ramdrv%\bin\pktchk.com 0x20 0xff >nul
  13. if errorlevel 1 goto _nowattcp
  14. :_npktchk
  15.  
  16. %ramdrv%\bin\pprd.exe -z%1
  17. goto _end
  18.  
  19. :_help
  20. echo.
  21. echo PING:    Simple WATTCP PING implementation by 'PPRD.EXE -z%%1'
  22. echo EXAMPLE: ping 192.168.0.100
  23. echo.
  24. goto _end
  25.  
  26. :_nopprd
  27. echo.
  28. echo PING:    (ERROR) Missing 'PPRD.EXE'
  29. echo.
  30. goto _end
  31.  
  32. :_nowattcp
  33. echo.
  34. echo PING:    (ERROR) Missing 'WATTCP.CFG'
  35. echo.
  36. goto _end
  37.  
  38. :_end
  39.